Passed
Pull Request — master (#28)
by Felipe Catão do
01:52
created

hj   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 3
eloc 3
dl 0
loc 5
c 0
b 0
f 0
rs 10

1 Function

Rating   Name   Duplication   Size   Complexity  
A teste 0 3 3
1
//Criar aqui o exportador do WebPack//
2
import routesEngine from './routesEngine.js'
3
import RenderEngine from './render.js'
4
import Components from './components.js'
5
import Security from './security.js'
6
import reactive from './reactive.js'
7
8
const RoutesEngine = ()=>{
0 ignored issues
show
Unused Code introduced by
The constant RoutesEngine seems to be never used. Consider removing it.
Loading history...
9
    const RouteEngine = new routesEngine()
0 ignored issues
show
Coding Style Best Practice introduced by
By convention, constructors like routesEngine should be capitalized.
Loading history...
10
    return RouteEngine
11
}
12
13
const Renders = () =>{
0 ignored issues
show
Unused Code introduced by
The constant Renders seems to be never used. Consider removing it.
Loading history...
14
    const Renders = new RenderEngine()
15
    return Renders
16
}
17
18
class hj{
19
    teste(){
20
        
21
    }
22
}
23
24
export default new hj
0 ignored issues
show
Coding Style Best Practice introduced by
By convention, constructors like hj should be capitalized.
Loading history...